Return the summation of an array


Posted by Christy on 2022-04-19

Description: Write a function named sum that accepts an array and return the summation of an array.

function sum(arr) {
  let result = 0;
  for (let i = 0; i < arr.length; i++) {
    result += arr[i];
  }
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0

The other answers:

function sum(arr) {
  let i = 0;
  let result = 0;
  do {
    result += arr[i];
    i++;
  } while (i < arr.length);
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0
function sum(arr) {
  let i = 0;
  let result = 0;
  while (i < arr.length) {
    result += arr[i];
    i++;
  }
  return result;
}

console.log(sum([1, 2, 3])); // 6
console.log(sum([-1, 1, 2, -2, 3, -3])); // 0









Related Posts

W12_作業一實作記錄 [ MTR05 ] 實作之三

W12_作業一實作記錄 [ MTR05 ] 實作之三

F2E合作社|交錯漂浮版|網頁切版

F2E合作社|交錯漂浮版|網頁切版

巢狀救星三部曲(1) - 從 Callback Hell 到 Promise Chain

巢狀救星三部曲(1) - 從 Callback Hell 到 Promise Chain


Comments